home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Workbench Add-On
/
Workbench Add-On - Volume 1.iso
/
DiskUtil
/
CD-ROM
/
JukeBox
/
bwd.jb
< prev
next >
Wrap
Text File
|
1995-08-23
|
249b
|
16 lines
/* skip back to previous track */
/* (c) copyright 1992,93 by F.J. Reichert */
options results;
current track;
if result ~= 0 then do;
toset = result - 1;
if toset > 0 then do
set track toset;
end;
else do
set track 1;
end;
end;
exit(0);